Alias File Format


The "Alias File" sets up a group of "Aliases" for use in Scripts in place of hard number values. They are loaded by an Alias Def

Format Description


Example Font File

;;;;;;;;;;;;;;;;;;;;;;
; Example Alias File ;
;;;;;;;;;;;;;;;;;;;;;;

:True		;When the text "_True" is encountered in any script will be interpreted as the value "1"
:1

:False		;When the text "_False" is encountered in any script will be interpreted as the value "0"
:0

:Value3		;When the text "_Value3" is encountered in any script will be interpreted as the value "3"
:3

:AnotherAlias	;When the text "_AnotherAlias" is encountered in any script will be interpreted as the value "42"
:42

-EOF-